/* ============================================================
   FEIRI MILANO — TYPOGRAPHY TOKENS
   ============================================================ */
:root {
  /* Families — 'Griffon' is the brand-primary headline face (see fonts.css);
     the named fallbacks render until the licensed Griffon files are installed. */
  --font-display: 'Griffon', 'Cinzel', 'Times New Roman', serif;        /* logo / hero caps */
  --font-serif:   'Griffon', 'Cormorant Garamond', Georgia, serif;      /* headlines, quotes (small caps) */
  --font-sans:    'Jost', 'Helvetica Neue', Arial, sans-serif;          /* UI, body, labels */

  /* Semantic family aliases */
  --font-heading: var(--font-serif);
  --font-body:    var(--font-sans);
  --font-eyebrow: var(--font-sans);

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

  /* Weights */
  --weight-light:    300;
  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;

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

  /* Letter spacing — the brand leans on wide tracking for caps */
  --tracking-tight:  -0.01em;
  --tracking-normal: 0;
  --tracking-wide:   0.08em;
  --tracking-wider:  0.18em;  /* MILANO-style lockups */
  --tracking-widest: 0.32em;  /* eyebrows / micro-labels */
}
