/* Feanix Biotechnology — brand font layer
   Self-hosted Latin woff2 subsets + design-system font tokens.

   Faces:
     - Geist Mono     → display / headings / data readouts (monospace)
     - Source Serif 4 → body copy (serif), normal + italic

   These files are the "latin" Google Fonts subsets (U+0000–00FF + common
   punctuation/symbols), so English renders from the local files with zero
   network dependency. For extended scripts (Vietnamese, etc.), pair with the
   Google Fonts <link> in each artifact — the browser falls back automatically
   via unicode-range. */

@font-face {
  font-family: "Geist Mono";
  src: url("./geist-mono-100-900.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Source Serif 4";
  src: url("./source-serif-4-200-900.woff2") format("woff2");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Source Serif 4";
  src: url("./source-serif-4-200-900-italic.woff2") format("woff2");
  font-weight: 200 900;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Design-system font tokens — reference these instead of hardcoding families.
   NOTE: --brand-font-display was previously missing. Geist Mono was loaded but
   never bound to a variable, so headings never actually used the display face.
   Wire these into variables.css / components to fully leverage the type system. */
:root {
  --brand-font-display: "Geist Mono", "SF Mono", SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  --brand-font-body: "Source Serif 4", Georgia, "Times New Roman", serif;
  --brand-font-mono: "Geist Mono", "SF Mono", SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
}
