/* ============================================================================
   FONTS

   VULF SANS IS NOT DECLARED HERE — ON PURPOSE.

   It is registered through the `arts-custom-fonts` plugin
   (WP Admin -> Custom Fonts), which does three things this file cannot:

     1. emits the @font-face rules itself, one per weight
     2. registers the family into Kinsey's Customizer typography controls
        (via the `arts/custom_fonts/font_choices` filter)
     3. registers it into Elementor's font dropdown
        (via `elementor/fonts/groups` + `elementor/fonts/additional_fonts`)

   So `font-family: 'Vulf Sans'` plus a numeric weight works everywhere —
   in this stylesheet, in Elementor, and in the Customizer.

   Registered weights: 300, 400, 500, 700, 900 — each with a true italic.
   There is no 100 or 200; asking for those will fall back to 300.

   Two things to know if you ever add fonts there:
     - Upload .woff2 ONLY. The plugin uses the file extension directly as the
       CSS format() hint, so a .ttf produces `format('ttf')`, which is not a
       valid value and gets skipped by browsers.
     - Pick the numeric weight that matches the file. The plugin trusts you;
       nothing validates that Bold.woff2 was tagged 700.

   The font files live in the WordPress media library, which means this
   configuration is NOT in git and must be set up separately on the live site.

   ---------------------------------------------------------------------------

   Azeret Mono IS declared here, because it ships as files inside the theme.
   It is SIL Open Font License, so serving it is unrestricted.

   TODO: move Azeret Mono into the Custom Fonts plugin too, so it appears in
   the Elementor and Customizer dropdowns alongside Vulf Sans. That needs
   .woff2 versions of these .ttf files first.

   Paths are relative to THIS file, hence ../fonts/.
   ============================================================================ */

@font-face {
	font-family: 'AzeretMono';
	src: url('../fonts/AzeretMono-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'AzeretMono-Thin';
	src: url('../fonts/AzeretMono-Thin.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
