/* ============================================================
   NUKON USA — WEBFONTS
   Families are client-decided (2026-08). All three are Google Fonts;
   no binaries are hosted in this repo.

   Saira            -> display / headings (600 · 700 · 800)
   Saira Condensed  -> oversized hero headlines only (600 · 700 · 800)
   Inter            -> body / UI (400 · 500 · 600)
   IBM Plex Mono    -> spec tables, stat counters, HUD labels (500 · 600)
                       always with font-variant-numeric: tabular-nums

   Families stay overridable per project — see guidelines/typography.md.
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Saira:wght@600;700;800&family=Saira+Condensed:wght@600;700;800&family=Inter:wght@400;500;600&family=IBM+Plex+Mono:wght@500;600&display=swap");

:root {
  /* raw family stacks */
  --font-saira:      "Saira", system-ui, sans-serif;
  --font-saira-cond: "Saira Condensed", "Saira", system-ui, sans-serif;
  --font-inter:      "Inter", system-ui, -apple-system, sans-serif;
  --font-plex-mono:  "IBM Plex Mono", ui-monospace, "SF Mono", monospace;
}
