/* ============================================================================
 * Self-hosted fonts for idealai.ai — replaces the two render-blocking Google
 * Fonts requests (fonts.googleapis.com CSS + fonts.gstatic.com woff2). All three
 * families ship as single VARIABLE woff2 files (latin subset only, ~125KB total,
 * cached cross-page), so the whole weight range 400–700 comes from one file each.
 *
 * font-display:swap → text paints immediately in the fallback, then swaps when
 * the woff2 lands (no invisible-text FOIT, protects LCP). The critical weight
 * (Inter 400/600 + Inter Tight, used in the hero) is <link rel=preload>ed in the
 * page <head> so the browser fetches it in parallel with the CSS.
 *
 * latin unicode-range matches Google's own subset, so the browser only downloads
 * a family if the page actually uses a glyph in range.
 * Source: Google Fonts css2 (Inter v20, Inter Tight v9, JetBrains Mono v24),
 * downloaded 2026-06-16. Regenerate via tools/fetch_fonts.sh if bumping versions.
 * ========================================================================== */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/inter-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;
}
@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/fonts/inter-tight-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;
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400 700;
  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;
}
