/* ── Kerstin Rachfahl — Typography tokens ─────────────────────────────
   Two families only:
   • Cormorant Garamond — headlines, book titles, the brand name. A high-
     contrast classic serif. Used at generous sizes; quiet, bookish, never
     loud. Weights: 400 (Regular) and 600 (SemiBold).
   • Inter — body copy, blurbs, navigation, all UI. Weights 400 / 500 / 600.
   The pairing reads like a fine bookshop: serif for the works, clean sans
   for the apparatus around them.
   ───────────────────────────────────────────────────────────────────── */

:root {
  /* Families */
  --font-display: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-text:    'Inter', -apple-system, 'Segoe UI', system-ui, sans-serif;

  /* Weights */
  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;

  /* Display scale — serif, for headlines & titles (fluid) */
  --display-2xl: 4.5rem;   /* 72px — hero book title */
  --display-xl:  3.5rem;   /* 56px — page title */
  --display-lg:  2.75rem;  /* 44px — section heading */
  --display-md:  2rem;     /* 32px — card title / book title */
  --display-sm:  1.5rem;   /* 24px — small heading */

  /* Text scale — Inter, for everything else */
  --text-xl:   1.25rem;    /* 20px — lead blurb */
  --text-lg:   1.125rem;   /* 18px — body large */
  --text-base: 1rem;       /* 16px — body */
  --text-sm:   0.875rem;   /* 14px — meta, nav, labels */
  --text-xs:   0.75rem;    /* 12px — eyebrow / fine print */

  /* Line heights */
  --leading-display: 1.05;
  --leading-tight:   1.2;
  --leading-snug:    1.4;
  --leading-body:    1.65;

  /* Letter spacing */
  --tracking-eyebrow: 0.22em;  /* uppercase eyebrows / series labels */
  --tracking-label:   0.08em;  /* nav, buttons */
  --tracking-tight:   -0.01em; /* large display */
  --tracking-normal:  0;
}
