/* ============================================
   Horizon-Aero — Typography tokens
   Body: Onest 22px / 1.5. Headings weight 700, primary color.
   ============================================ */
:root {
    --font-sans: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* --- Weights (Onest ships 200–800) --- */
    --fw-extralight: 200;  /* @kind font */
    --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 */

    /* --- Type scale (px, from source) --- */
    --fs-display: 64px;    /* section-title / hero h1 max */
    --fs-h2: 48px;         /* product card title */
    --fs-h3: 32px;         /* about intro / subheads */
    --fs-title: 30px;      /* badge, card name */
    --fs-lead: 26px;       /* hero subtitle */
    --fs-body: 22px;       /* base body */
    --fs-sm: 20px;         /* labels, categories, small buttons */
    --fs-xs: 18px;         /* button default, dense nav */
    --fs-stat: 86px;       /* big spec numbers */

    /* --- Line heights --- */
    --lh-tight: 1.2;       /* @kind font */
    --lh-snug: 1.28;       /* @kind font */
    --lh-body: 1.5;        /* @kind font */

    /* --- Semantic aliases --- */
    --font-body: var(--font-sans);
    --font-heading: var(--font-sans);
}
