/* ===== Lingrow · Typography tokens =============================
   Display = Unbounded (tight, heavy, geometric).
   Body/UI = Onest (humanist, legible, calm).
   Eyebrows/labels are UPPERCASE Onest 600 with tracking.
================================================================= */
:root {
  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Onest', system-ui, -apple-system, sans-serif;

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

  /* Display scale (Unbounded) */
  --text-hero:    clamp(2.75rem, 6vw, 4.5rem);   /* marketing hero */
  --text-display: 2.5rem;    /* 40px  screen titles */
  --text-h1:      2rem;      /* 32px */
  --text-h2:      1.5rem;    /* 24px */
  --text-h3:      1.25rem;   /* 20px */

  /* Body scale (Onest) */
  --text-lg:   1.125rem;  /* 18px  lead */
  --text-base: 1rem;      /* 16px */
  --text-sm:   0.875rem;  /* 14px  meta / secondary */
  --text-xs:   0.75rem;   /* 12px  labels */
  --text-2xs:  0.6875rem; /* 11px  eyebrow caps */

  /* line-heights */
  --lh-tight: 1.05; /* @kind other */
  --lh-snug: 1.2; /* @kind other */
  --lh-normal: 1.5; /* @kind other */
  --lh-relaxed: 1.65; /* @kind other */

  /* tracking */
  --tracking-tight: -0.02em; /* @kind other */
  --tracking-normal: 0; /* @kind other */
  --tracking-eyebrow: 0.14em; /* @kind other */
}
