/* CMCO typography tokens.
   Primary: Zalando Sans SemiExpanded (Google) — Bold headings, SemiBold sub-headings, Light body, Regular small text/web.
   Alternative: Arial (Microsoft Office applications). */
:root {
  --font-brand: "Zalando Sans SemiExpanded", Arial, Helvetica, sans-serif;
  --font-office: Arial, Helvetica, sans-serif; /* PowerPoint, Word, email */

  --weight-heading: 700;      /* Bold — headings */
  --weight-subheading: 600;   /* SemiBold — sub-headings */
  --weight-body: 300;         /* Light — body text */
  --weight-small: 400;        /* Regular — small text and website applications */

  --text-display: 3rem;       /* 48px */
  --text-h1: 2.25rem;         /* 36px */
  --text-h2: 1.5rem;          /* 24px */
  --text-h3: 1.125rem;        /* 18px */
  --text-body-size: 1rem;     /* 16px */
  --text-small: 0.8125rem;    /* 13px */

  --leading-tight: 1.15;
  --leading-body: 1.6;
}
