/*
 * Self-hosted fonts (MERGE_SPEC.md §5) — Manrope + JetBrains Mono, latin
 * subset, downloaded 2026-07-03 from Google Fonts static URLs
 * (fonts.gstatic.com). Google serves these families as VARIABLE fonts:
 * requesting discrete weights 400/500/600/700/800 returned byte-identical
 * variable woff2 files, so each family ships as ONE file with a
 * font-weight range instead of five duplicate copies.
 *
 * font-display: swap. Non-latin glyphs (e.g. box-drawing "─", arrows)
 * fall back to the system stacks declared in runtime.jsx tokens — same
 * behaviour as the previous CDN latin-subset loading.
 */

/* Manrope variable, latin — covers weights 400–800 used by the portal */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(/fonts/manrope-latin.woff2) format('woff2');
  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;
}

/* JetBrains Mono variable, latin — covers weights 400–600 used by .mono */
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(/fonts/jetbrains-mono-latin.woff2) format('woff2');
  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;
}
