/* pocca — Typography tokens */

:root {
  /* Families */
  --font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-wordmark: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-sans: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --font-mono: 'Space 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 */

  /* Fluid display sizes (screen) */
  --fs-display: clamp(3rem, 6vw, 5.25rem);   /* @kind font */
  --fs-h1: clamp(2.25rem, 4vw, 3.5rem);      /* @kind font */
  --fs-h2: clamp(1.75rem, 3vw, 2.5rem);      /* @kind font */
  --fs-h3: 1.5rem;      /* @kind font */
  --fs-h4: 1.25rem;     /* @kind font */

  /* Text sizes */
  --fs-lead: 1.375rem;      /* @kind font */
  --fs-body-lg: 1.125rem;   /* @kind font */
  --fs-body: 1rem;          /* @kind font */
  --fs-body-sm: 0.9375rem;  /* @kind font */
  --fs-caption: 0.8125rem;  /* @kind font */

  /* Mono / eyebrow */
  --fs-eyebrow: 0.75rem;    /* @kind font */
  --fs-mono-sm: 0.8125rem;  /* @kind font */

  /* Line heights */
  --lh-tight: 1.02;     /* @kind font */
  --lh-snug: 1.14;      /* @kind font */
  --lh-heading: 1.2;    /* @kind font */
  --lh-body: 1.6;       /* @kind font */
  --lh-relaxed: 1.72;   /* @kind font */

  /* Letter spacing */
  /* Instrument Serif reads best slightly open */
  --ls-display: 0.012em;   /* @kind font */
  --ls-heading: -0.018em;  /* @kind font */
  --ls-body: 0em;          /* @kind font */
  --ls-eyebrow: 0.16em;    /* @kind font */
  --ls-caps: 0.06em;       /* @kind font */
}
