/* Sell Better — Typography tokens
   Archivo (Bold/Black) for titles & headlines; Archivo Bold Italic for
   "special" display; Roboto for body & buttons; Roboto Mono for meta text. */

:root {
  /* Families */
  --font-display: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Roboto', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'Roboto Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  /* Weights */
  --weight-regular: 400;
  --weight-medium:  500;
  --weight-bold:    700;
  --weight-black:   800;

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

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

  /* Tracking */
  --tracking-tight:  -0.02em;
  --tracking-normal: 0;
  --tracking-wide:   0.04em;
  --tracking-meta:   0.08em;  /* uppercase meta / mono labels */

  /* Semantic roles (family + weight pairings) */
  --role-display-weight: var(--weight-black);
  --role-h1-weight:      var(--weight-bold);
  --role-h2-weight:      var(--weight-bold);
  --role-subhead-weight: var(--weight-regular);
  --role-body-weight:    var(--weight-regular);
  --role-button-weight:  var(--weight-bold);
  --role-meta-weight:    var(--weight-regular);
}
