/* ============================================================
   TYPOGRAPHY
   Three voices:
   - DISPLAY (Cinzel): heraldic Roman caps. Always tracked out,
     usually uppercase. Titles, mottos, section eyebrows.
   - SERIF (EB Garamond): the reading voice. Scripture, body,
     product copy.
   - SANS (Hanken Grotesk): the interface voice. Buttons, labels,
     prices, nav, metadata.
   ============================================================ */
:root {
  /* Families */
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-serif:   "EB Garamond", Georgia, serif;
  --font-sans:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --font-hebrew:  "Frank Ruhl Libre", "EB Garamond", serif;

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

  /* Type scale (rem, 16px base) */
  --text-2xs: 0.6875rem; /* 11px */
  --text-xs:  0.75rem;   /* 12px */
  --text-sm:  0.875rem;  /* 14px */
  --text-md:  1rem;      /* 16px */
  --text-lg:  1.125rem;  /* 18px */
  --text-xl:  1.375rem;  /* 22px */
  --text-2xl: 1.75rem;   /* 28px */
  --text-3xl: 2.25rem;   /* 36px */
  --text-4xl: 3rem;      /* 48px */
  --text-5xl: 4rem;      /* 64px */
  --text-6xl: 5.25rem;   /* 84px */

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

  /* Letter spacing */
  --tracking-tighter: -0.02em;
  --tracking-tight:   -0.01em;
  --tracking-normal:  0;
  --tracking-wide:    0.04em;
  --tracking-wider:   0.12em;  /* Cinzel eyebrows / labels */
  --tracking-widest:  0.22em;  /* motto lockups */
}
