/* WorshipFill — Typography tokens
   One family: Inter. Display sizes are tight-tracked (-0.5px); body is calm. */
:root {
  --wf-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* weights — map 1:1 to the Inter faces the app bundles */
  --wf-w-regular: 400;   /* @kind font */
  --wf-w-medium: 500;    /* @kind font */
  --wf-w-semibold: 600;  /* @kind font */
  --wf-w-bold: 700;      /* @kind font */

  /* type scale (px values mirror the native StyleSheet usage) */
  --wf-text-display: 28px;   /* screen titles — Bold, -0.5 tracking */
  --wf-text-h1: 22px;        /* section headers — Bold */
  --wf-text-h2: 17px;        /* card titles — Bold/SemiBold */
  --wf-text-title: 15px;     /* list row titles — SemiBold */
  --wf-text-body: 14px;      /* body — Regular/Medium */
  --wf-text-sm: 13px;        /* secondary copy */
  --wf-text-xs: 12px;        /* meta, captions */
  --wf-text-micro: 11px;     /* nudges */
  --wf-text-nano: 9px;       /* tab labels, badges */

  --wf-tracking-tight: -0.5px;   /* @kind font */
  --wf-tracking-snug: -0.2px;    /* @kind font */
  --wf-tracking-wide: 0.2px;     /* @kind font */
  /* --wf-tracking-eyebrow: uppercase eyebrows e.g. GOOD EVENING */
  --wf-tracking-eyebrow: 1.2px;  /* @kind font */

  --wf-leading-tight: 1.15;      /* @kind font */
  --wf-leading-body: 1.45;       /* @kind font */
}
