/* ============================================================
   Relay 2.0 — Typography tokens
   Display = Bricolage Grotesque (friendly, characterful headlines)
   UI/Body = Inter (clean product UI, Airtable-app density)
   Mono    = JetBrains Mono (data, record IDs, code)
   ============================================================ */

:root {
  /* ---- Families ---- */
  /* Display/Marker is Bricolage Grotesque — friendly but sharp (the Whiteboard identity). */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-marker:  'Bricolage Grotesque', system-ui, sans-serif;
  --font-hand:    'Kalam', 'Comic Sans MS', cursive;
  --font-sans:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  /* No separate mono face — Inter is the one basic UI/data font. Numeric cells
     lean on font-variant-numeric: tabular-nums for alignment. */
  --font-mono:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* ---- Weights ---- */
  --fw-regular:  400;  /* @kind font */
  --fw-medium:   500;  /* @kind font */
  --fw-semibold: 600;  /* @kind font */
  --fw-bold:     700;  /* @kind font */
  --fw-extra:    800;  /* @kind font */
  --fw-black:    900;  /* @kind font */

  /* ---- Type scale (px) ---- */
  --text-xs:   12px;
  --text-sm:   13px;
  --text-base: 14px;   /* product UI default */
  --text-md:   15px;
  --text-lg:   17px;
  --text-xl:   20px;
  --text-2xl:  24px;
  --text-3xl:  30px;
  --text-4xl:  38px;
  --text-5xl:  48px;
  --text-6xl:  64px;
  --text-7xl:  84px;   /* hero display */

  /* ---- Line heights ---- */
  --leading-tight:   1.1;
  --leading-snug:    1.25;
  --leading-normal:  1.5;
  --leading-relaxed: 1.65;

  /* ---- Letter spacing ---- */
  --tracking-tighter: -0.03em;  /* big display */
  --tracking-tight:   -0.015em;
  --tracking-normal:  0;
  --tracking-wide:    0.02em;
  --tracking-caps:    0.06em;   /* eyebrows / overlines */
}
