/* ================================================================== *
 * Chandraiah Law Firm — Typography Tokens
 * Display/headings: Libre Baskerville  (serif, authoritative)
 * Body / UI:        Source Sans 3      (humanist sans, legible)
 * ================================================================== */

:root {
  /* ---- Families ------------------------------------------------- */
  --font-serif: "Libre Baskerville", "Georgia", "Times New Roman", serif;
  --font-sans:  "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --font-display: var(--font-serif);
  --font-body:    var(--font-sans);

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

  /* ---- Type scale (1.250 major-third, 16px base) ---------------- */
  --text-2xs:  0.6875rem; /* 11px — legal fine print */
  --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:  2.875rem;  /* 46px */
  --text-4xl:  3.75rem;   /* 60px */

  /* ---- Line heights --------------------------------------------- */
  --leading-tight:   1.12;
  --leading-snug:    1.28;
  --leading-normal:  1.55;
  --leading-relaxed: 1.7;

  /* ---- Letter spacing ------------------------------------------- */
  --tracking-tight:  -0.015em;
  --tracking-normal: 0;
  --tracking-wide:   0.04em;
  --tracking-eyebrow: 0.16em; /* uppercase eyebrows / kickers */
}
