/* JoyBlast Coffee — Typography tokens (LUXURY direction)
   Editorial serif display + signature script + quiet humanist body. */
:root {
  /* Families */
  --font-script:  'Mr Dafoe', 'Snell Roundhand', cursive;       /* logo / signature — monoline, à la Juniper */
  --font-display: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-text:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --font-mono:    'Space Mono', ui-monospace, 'SFMono-Regular', monospace;

  /* Weights */
  --weight-regular: 400;
  --weight-medium:  500;
  --weight-semibold:600;
  --weight-bold:    700;
  --weight-extra:   700;   /* serif display tops out at 700 — no heavy weight */

  /* Type scale — serif display likes generous size + air */
  --text-xs:   0.75rem;   /* 12px — micro labels */
  --text-sm:   0.875rem;  /* 14px — captions, meta */
  --text-base: 1rem;      /* 16px — body */
  --text-md:   1.1875rem; /* 19px — lead body */
  --text-lg:   1.5rem;    /* 24px — card titles (serif) */
  --text-xl:   2rem;      /* 32px — section heads */
  --text-2xl:  2.75rem;   /* 44px — display sm */
  --text-3xl:  3.75rem;   /* 60px — display md */
  --text-4xl:  5rem;      /* 80px — display lg */
  --text-5xl:  7rem;      /* 112px — hero */

  /* Line heights — serif headlines sit tighter; body breathes */
  --leading-tight:   1.02;
  --leading-snug:    1.14;
  --leading-normal:  1.55;
  --leading-relaxed: 1.7;

  /* Letter spacing */
  --tracking-tight:  -0.01em;
  --tracking-snug:   -0.005em;
  --tracking-normal: 0;
  --tracking-wide:   0.06em;
  --tracking-caps:   0.22em;  /* spaced small-caps labels — the luxury signature */
}
