/* ReturnMePlz — typography tokens */
:root {
  --font-heading: "Poppins", system-ui, sans-serif;   /* Bold/SemiBold — headlines, wordmark, buttons */
  --font-body: "Inter", system-ui, sans-serif;        /* Regular/Medium — body, UI */
  --font-tagline: "Patrick Hand", cursive;            /* Accent ONLY — tagline, pull quotes. Slant with skewX(-9deg) */

  /* Sizes seen in product */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;    /* page headings */
  --text-3xl: 30px;    /* hero headings */
  --text-4xl: 36px;

  --leading-tight: 1.25;
  --leading-relaxed: 1.625;
  --tracking-widest: 0.1em;  /* uppercase eyebrow labels */
}
