/* Kind Regards — type tokens
   Three voices, never mixed within one line of text:
   - serif italic  = the editorial/display voice (headlines, quotes, product names)
   - mono          = the UI/chrome voice (nav, buttons, labels, SKU, prices)
   - sans          = the utility voice (small captions, footer links, dense body)
   No licensed webfonts shipped — system stacks per design-system.md §2. */
:root{
  /* serif italic still exploring — no production font supplied yet, keep the system fallback */
  --font-serif:"Hoefler Text","Iowan Old Style",Garamond,serif;
  /* ABC Diatype = TRIAL build, see tokens/fonts.css */
  --font-sans:"ABC Diatype",-apple-system,BlinkMacSystemFont,"Helvetica Neue","Segoe UI",system-ui,sans-serif;
  --font-mono:"Söhne Mono","Geist Mono",ui-monospace,"SF Mono",Menlo,"Cascadia Mono",monospace;

  /* scale — ratio 1.25, base 16 */
  --fs-2xs:11px;
  --fs-xs:12px;
  --fs-sm:13px;
  --fs-base:16px;
  --fs-md:20px;
  --fs-lg:25px;
  --fs-xl:31px;
  --fs-2xl:39px;
  --fs-3xl:49px;
  --fs-4xl:61px;

  --tracking-label:.14em;
  --tracking-wide:.24em;

  --lh-tight:1.05; /* @kind other */
  --lh-heading:1.2; /* @kind other */
  --lh-body:1.55; /* @kind other */
}
