/* ============================================================
   Marcela Finanças — Typography tokens
   Display: Cormorant Garamond ("The Seasons")
   Serif body: Lora ("Literaturnaya")
   Sans / UI: Montserrat (exact)
   Script accent: Parisienne ("Amsterdam Four")
   ============================================================ */
:root {
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-serif:   'Lora', Georgia, serif;
  --font-sans:    'Montserrat', system-ui, -apple-system, sans-serif;
  --font-script:  'Parisienne', 'Segoe Script', cursive;

  /* Type scale (rem, 16px base) */
  --text-xs:   0.75rem;   /* 12 */
  --text-sm:   0.875rem;  /* 14 */
  --text-base: 1rem;      /* 16 */
  --text-lg:   1.25rem;   /* 20 */
  --text-xl:   1.5rem;    /* 24 */
  --text-2xl:  2rem;      /* 32 */
  --text-3xl:  2.75rem;   /* 44 */
  --text-4xl:  3.75rem;   /* 60 */
  --text-5xl:  5rem;      /* 80 */

  /* Weights */
  --fw-light: 300;      /* @kind font */
  --fw-regular: 400;    /* @kind font */
  --fw-medium: 500;     /* @kind font */
  --fw-semibold: 600;   /* @kind font */
  --fw-bold: 700;       /* @kind font */

  /* Line heights */
  --lh-tight: 1.05;     /* @kind font */
  --lh-snug: 1.25;      /* @kind font */
  --lh-normal: 1.55;    /* @kind font */
  --lh-relaxed: 1.75;   /* @kind font */

  /* Letter spacing — Montserrat labels use positive tracking */
  --ls-tight: -0.02em;  /* @kind font */
  --ls-normal: 0;       /* @kind font */
  --ls-wide: 0.08em;    /* @kind font */
  --ls-wider: 0.18em;   /* @kind font */

  /* Semantic roles */
  --heading-family: var(--font-display); /* @kind font */
  --body-family: var(--font-sans);       /* @kind font */
  --eyebrow-family: var(--font-sans);    /* @kind font */
}
