/* ============================================
   ATO TYPOGRAPHY TOKENS
   Display: Unbounded (Google Fonts)
   Body/UI: Satoshi (Fontshare)
   ============================================ */

:root {
  /* --- Font Families --- */
  --font-display: 'Unbounded', 'Impact', sans-serif;
  --font-body:    'Satoshi', 'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', 'Courier New', monospace;

  /* --- Font Size Scale --- */
  --text-2xs:  0.625rem;   /* 10px */
  --text-xs:   0.75rem;    /* 12px */
  --text-sm:   0.875rem;   /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg:   1.125rem;   /* 18px */
  --text-xl:   1.25rem;    /* 20px */
  --text-2xl:  1.5rem;     /* 24px */
  --text-3xl:  1.875rem;   /* 30px */
  --text-4xl:  2.25rem;    /* 36px */
  --text-5xl:  3rem;       /* 48px */
  --text-6xl:  3.75rem;    /* 60px */
  --text-7xl:  4.5rem;     /* 72px */
  --text-8xl:  6rem;       /* 96px */
  --text-9xl:  8rem;       /* 128px */

  /* --- Line Heights --- */
  --leading-none:    1;
  --leading-tight:   1.1;
  --leading-snug:    1.25;
  --leading-normal:  1.5;
  --leading-relaxed: 1.65;
  --leading-loose:   1.8;

  /* --- Font Weights --- */
  --font-light:     300;
  --font-regular:   400;
  --font-medium:    500;
  --font-semibold:  600;
  --font-bold:      700;
  --font-extrabold: 800;
  --font-black:     900;

  /* --- Letter Spacing --- */
  --tracking-tighter: -0.05em;
  --tracking-tight:   -0.03em;
  --tracking-normal:   0em;
  --tracking-wide:     0.04em;
  --tracking-wider:    0.08em;
  --tracking-widest:   0.15em;

  /* --- Semantic Type Roles --- */
  --type-display-font:    var(--font-display);
  --type-display-weight:  var(--font-extrabold);
  --type-display-leading: var(--leading-tight);
  --type-display-tracking:var(--tracking-tight);

  --type-heading-font:    var(--font-display);
  --type-heading-weight:  var(--font-bold);
  --type-heading-leading: var(--leading-snug);

  --type-body-font:    var(--font-body);
  --type-body-weight:  var(--font-regular);
  --type-body-leading: var(--leading-relaxed);

  --type-ui-font:    var(--font-body);
  --type-ui-weight:  var(--font-medium);
  --type-ui-leading: var(--leading-normal);

  --type-label-font:     var(--font-body);
  --type-label-weight:   var(--font-bold);
  --type-label-tracking: var(--tracking-widest);
  --type-label-transform:uppercase;
}
