/* atomic HR — Typography tokens
   League Spartan (display / headings — the wordmark face)
   Code Pro (body & UI — the tagline face; falls back to Outfit until the
   licensed files are added — see fonts.css).
   Headings are heavy and geometric to match the wordmark; body is calm and
   readable. Labels reuse the body face, uppercase with wide tracking. */

:root {
  --font-display: "Poppins", "League Spartan", system-ui, sans-serif;
  --font-sans:    "Code Pro", "Outfit", system-ui, sans-serif;
  /* --font-mono kept as an alias of the body face — the brand uses no mono */
  --font-mono:    "Code Pro", "Outfit", system-ui, sans-serif;

  /* weights */
  --fw-regular:   400; /* @kind other */
  --fw-medium:    500; /* @kind other */
  --fw-semibold:  600; /* @kind other */
  --fw-bold:      700; /* @kind other */
  --fw-extrabold: 800; /* @kind other */
  --fw-black:     900; /* @kind other */

  /* type scale — 1.25 major-third, base 16 */
  --text-xs:   0.75rem;   /* 12 */
  --text-sm:   0.875rem;  /* 14 */
  --text-base: 1rem;      /* 16 */
  --text-md:   1.125rem;  /* 18 */
  --text-lg:   1.375rem;  /* 22 */
  --text-xl:   1.75rem;   /* 28 */
  --text-2xl:  2.25rem;   /* 36 */
  --text-3xl:  3rem;      /* 48 */
  --text-4xl:  3.75rem;   /* 60 */

  /* line heights */
  --leading-tight:   1.08;
  --leading-snug:    1.25;
  --leading-normal:  1.5;
  --leading-relaxed: 1.65;

  /* letter spacing */
  --tracking-tight:  -0.02em;
  --tracking-normal: 0;
  --tracking-wide:   0.04em;
  --tracking-label:  0.14em;  /* uppercase eyebrows / labels */

  /* semantic roles */
  --display-font:   var(--font-display);
  --display-weight: var(--fw-black);
  --heading-font:   var(--font-display);
  --heading-weight: var(--fw-extrabold);
  --body-font:      var(--font-sans);
  --body-weight:    var(--fw-regular);
  --label-font:     var(--font-sans);
}
