/* ============================================================
   RAM Technologies — Typography Tokens
   Display: Montserrat (geometric, matches brand wordmark)
   UI/Body: Manrope
   Mono:    JetBrains Mono
   ============================================================ */

:root {
  /* ---- Families ---- */
  --font-display: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

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

  /* ---- Type scale (1.250 major-third on a 16px base) ---- */
  --text-2xs:  0.6875rem; /* 11px — micro labels */
  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-md:   1.125rem;  /* 18px */
  --text-lg:   1.25rem;   /* 20px */
  --text-xl:   1.5rem;    /* 24px */
  --text-2xl:  1.875rem;  /* 30px */
  --text-3xl:  2.25rem;   /* 36px */
  --text-4xl:  3rem;      /* 48px */
  --text-5xl:  3.75rem;   /* 60px */
  --text-6xl:  4.5rem;    /* 72px */

  /* ---- Line heights ---- */
  --leading-tight:   1.1;  /* @kind font */
  --leading-snug:    1.25; /* @kind font */
  --leading-normal:  1.5;  /* @kind font */
  --leading-relaxed: 1.7;  /* @kind font */

  /* ---- Letter spacing ---- */
  --tracking-tighter: -0.03em;  /* @kind font */
  --tracking-tight:   -0.015em; /* @kind font */
  --tracking-normal:  0em;      /* @kind font */
  --tracking-wide:    0.04em;    /* @kind font */
  --tracking-wider:   0.12em;    /* eyebrow / "TECHNOLOGIES" style @kind font */
  --tracking-widest:  0.22em;    /* @kind font */

  /* ---- Semantic roles ---- */
  --role-display-font:    var(--font-display);
  --role-display-weight:  var(--fw-extrabold);
  --role-heading-font:    var(--font-display);
  --role-heading-weight:  var(--fw-bold);
  --role-eyebrow-font:    var(--font-display);
  --role-eyebrow-spacing: var(--tracking-wider);
  --role-body-font:       var(--font-body);
  --role-body-weight:     var(--fw-regular);
  --role-mono-font:       var(--font-mono);
}
