/* Akenius AB — typography tokens.
   Two voices only: Cormorant Garamond (serif, editorial display) and
   IBM Plex Sans (sans, everything functional). */
:root {
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'IBM Plex Sans', -apple-system, Helvetica, Arial, sans-serif;

  /* Scale */
  --text-display: clamp(44px, 6vw, 72px); /* serif 600, line-height 1.02 */
  --text-h1: clamp(30px, 5vw, 44px);      /* serif 600, line-height 1.05 */
  --text-h2: 28px;                        /* serif 600, line-height 1.15 */
  --text-h3: 21px;                        /* serif 600, line-height 1.25 */
  --text-lead: 18px;                      /* sans 400, line-height 1.55 */
  --text-body: 15px;                      /* sans 400, line-height 1.6 */
  --text-body-sm: 13px;                   /* sans 400, line-height 1.5 */
  --text-caption: 12px;                   /* sans 400, slate */
  --text-eyebrow: 11px;                   /* sans 600, uppercase, brass */

  /* Letterspacing */
  --track-eyebrow: 0.22em;   /* eyebrows, descriptors */
  --track-wordmark: 0.34em;  /* AKENIUS wordmark only */
  --track-label: 0.06em;     /* buttons, small labels */

  /* Line heights */
  --leading-display: 1.02;
  --leading-heading: 1.1;
  --leading-body: 1.6;
}
