/* ===========================================================================
   DKSlab — Typography tokens
   Source Serif Pro (display/editorial) + Montserrat (UI/data).
   =========================================================================== */
:root {
  /* Families */
  --font-serif: "Source Serif Pro", Georgia, "Times New Roman", serif;
  --font-sans:  "Montserrat", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-alt:   "Montserrat Alternates", var(--font-sans);
  --font-mono:  "Montserrat", ui-monospace, Menlo, monospace; /* tabular data */

  /* Semantic family aliases */
  --font-display: var(--font-serif);
  --font-body:    var(--font-sans);
  --font-data:    var(--font-sans);

  /* Type scale (rem, 1rem = 16px) */
  --fs-3xs: 0.625rem;  /* 10 — micro legal / technical */
  --fs-2xs: 0.6875rem; /* 11 — eyebrow / tag */
  --fs-xs:  0.75rem;   /* 12 */
  --fs-sm:  0.875rem;  /* 14 */
  --fs-md:  1rem;      /* 16 — body */
  --fs-lg:  1.125rem;  /* 18 */
  --fs-xl:  1.375rem;  /* 22 */
  --fs-2xl: 1.75rem;   /* 28 */
  --fs-3xl: 2.25rem;   /* 36 */
  --fs-4xl: 3rem;      /* 48 */
  --fs-5xl: 4rem;      /* 64 */
  --fs-6xl: 5.5rem;    /* 88 */

  /* 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 */
  --fw-extrabold:800; /* @kind font */
  --fw-black:    900; /* @kind font */

  /* Line heights */
  --lh-tight:   1.05; /* @kind font */
  --lh-snug:    1.18; /* @kind font */
  --lh-normal:  1.5; /* @kind font */
  --lh-relaxed: 1.65; /* @kind font */

  /* Letter spacing — Montserrat technical labels run wide & uppercase */
  --ls-tightest: -0.02em; /* @kind font */
  --ls-tight:    -0.01em; /* @kind font */
  --ls-normal:   0; /* @kind font */
  --ls-wide:     0.08em; /* @kind font */
  --ls-wider:    0.16em; /* @kind font */
  --ls-widest:   0.28em; /* @kind font */
}
