/* ==========================================================================
   BHC — TYPOGRAPHY TOKENS
   Poppins (Regular / SemiBold / Bold) is the workhorse for headings + body.
   Ramboia Italic is the expressive display face for whimsical accents.
   The brand embraces "unexpected alignments and the intentional use of
   italics" — Ramboia is where that whimsy lives.
   ========================================================================== */
:root {
  /* Families */
  --font-sans:    "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Ramboia", "Poppins", Georgia, serif; /* always italic */

  /* Weights */
  --weight-regular:  400;
  --weight-semibold: 600;
  --weight-bold:     700;

  /* Type scale (rem, 16px base) */
  --text-2xs:  0.6875rem; /* 11px */
  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-md:   1.125rem;  /* 18px */
  --text-lg:   1.375rem;  /* 22px */
  --text-xl:   1.75rem;   /* 28px */
  --text-2xl:  2.25rem;   /* 36px */
  --text-3xl:  3rem;      /* 48px */
  --text-4xl:  4rem;      /* 64px */
  --text-5xl:  5.5rem;    /* 88px */

  /* Line heights */
  --leading-tight:   1.05;
  --leading-snug:    1.2;
  --leading-normal:  1.5;
  --leading-relaxed: 1.65;

  /* Letter spacing */
  --tracking-tight:  -0.02em;
  --tracking-normal: 0;
  --tracking-wide:   0.04em;
  --tracking-caps:   0.12em; /* for the brand's all-caps labels */

  /* Semantic roles */
  --font-display-role: var(--font-display);
  --font-heading-role: var(--font-sans);
  --font-body-role:    var(--font-sans);
  --font-label-role:   var(--font-sans);
}
