/* ── Nueva Umbría · Typography tokens ─────────────────────────────────────
   Poppins for headings (500/600), Open Sans for body (400/600).
   Sentence case everywhere — never ALL CAPS. */

:root {
  --font-heading: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:    "Open Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Weights — two per family only */
  --fw-body:      400; /* @kind font */
  --fw-body-bold: 600; /* @kind font */
  --fw-heading:   500; /* @kind font */
  --fw-heading-strong: 600; /* @kind font */

  /* Type scale — size / line-height pairs */
  --fs-h1:    40px;  --lh-h1:    48px;
  --fs-h2:    28px;  --lh-h2:    36px;
  --fs-h3:    20px;  --lh-h3:    28px;
  --fs-body:  16px;  --lh-body:  26px;
  --fs-small: 14px;  --lh-small: 22px;

  /* Tracking */
  --tracking-tight: -0.01em;
  --tracking-normal: 0;
}
