/* ─────────────────────────────────────────────────────────────
   Meridian — Fonts
   Primary typeface:  Barlow (Google Fonts) — matches source exactly.
   Mono typeface:     source uses "PP Neue Montreal Mono" (commercial).
                      Substituted with "Spline Sans Mono" (Google Fonts),
                      the nearest open geometric mono. SEE readme.md.
   ───────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Spline+Sans+Mono:wght@400;500&display=swap');

:root {
  /* Family stacks */
  --font-family-body: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-family-heading: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-family-mono: "Spline Sans Mono", "PP Neue Montreal Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Numeric weight aliases (the token file stores weight NAMES) */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}
