/* ============================================================
   TYPOGRAPHY — Spinnerbooth
   Display: Space Grotesk (geometric, characterful)
   Body/UI: Manrope (geometric humanist)
   ============================================================ */
:root {
  --font-display: 'Space Grotesk', 'Manrope', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, -apple-system, sans-serif;
  --font-mono:    'Space Grotesk', ui-monospace, 'SF Mono', monospace;

  /* Type scale (1.250 major-third-ish, tuned) */
  --text-xs:    0.75rem;   /* 12px — labels, meta */
  --text-sm:    0.875rem;  /* 14px — secondary UI */
  --text-base:  1rem;      /* 16px — body */
  --text-md:    1.125rem;  /* 18px — lead body */
  --text-lg:    1.375rem;  /* 22px — card titles */
  --text-xl:    1.75rem;   /* 28px — section heads */
  --text-2xl:   2.25rem;   /* 36px — page titles */
  --text-3xl:   3rem;      /* 48px — hero */
  --text-4xl:   4rem;      /* 64px — display */

  /* Weights */
  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;
  --weight-extra:    800;

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

  /* Letter spacing */
  --tracking-tight:  -0.02em;
  --tracking-snug:   -0.01em;
  --tracking-normal: 0;
  --tracking-wide:   0.04em;
  --tracking-caps:   0.12em;   /* uppercase eyebrows */
}
