/* ---------------------------------------------------------------------------
   PostLane webfonts.
   Sans: Figtree (the workhorse — soft geometric, warm without being cute).
   Display: Space Grotesk (marketing headlines ONLY — never in the app).
   Mono: JetBrains Mono (job codes ONLY — e.g. ACM-014. Timestamps and
   decimal hours use the sans with tabular figures; mono was reduced
   2026-07-12 as "too techy for creatives").
   Adopted 2026-07-12, replacing Inter.

   NOTE on substitution: loaded from the Google Fonts CDN so the design
   system is self-contained with no binary font files to ship. If you need
   pixel-locked offline rendering, drop the .woff2 files in tokens/fonts/
   and replace these @import lines with @font-face rules.
   --------------------------------------------------------------------------- */

@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&family=JetBrains+Mono:wght@400;500;600&display=swap");

:root {
  --font-sans: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
  --font-display: "Space Grotesk", "Figtree", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}
