/* ==========================================================================
   Fluir Festival — Type tokens
   Display face: Pagi Bold (provided binary, assets/fonts/Pagi-Bold.otf) —
   this is the chunky, rounded, ultra-bold face used in the wordmark and
   the carimbo stamp. Treat it as DISPLAY-ONLY (headlines, stamps, big
   numerals) — it was not supplied with a matching text weight.

   No body/text face was provided. Substituted nearest Google Font:
   Manrope (grotesque, geometric-humanist, wide range of weights, good
   diacritic coverage for pt-BR). FLAGGED — swap this file's @font-face
   + var(--font-body) if the real brand text face shows up.
   ========================================================================== */

@font-face {
  font-family: "Pagi Bold";
  src: url("../assets/fonts/Pagi-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --font-display: "Pagi Bold", "Manrope", sans-serif;
  --font-body: "Manrope", -apple-system, sans-serif;

  /* Type scale — festival posters run big & loud on display, calm on body */
  --size-display-xl: clamp(3.5rem, 3rem + 4vw, 7rem);
  --size-display-lg: clamp(2.5rem, 2.2rem + 2.4vw, 4.5rem);
  --size-display-md: clamp(1.75rem, 1.5rem + 1.4vw, 2.75rem);
  --size-display-sm: 1.5rem;

  --size-body-lg: 1.25rem;
  --size-body-md: 1.0625rem;
  --size-body-sm: 0.9375rem;
  --size-eyebrow: 0.8125rem;

  --weight-display: 800;
  --weight-body: 500;
  --weight-eyebrow: 700;

  --leading-display: 0.94;
  --leading-body: 1.5;
  --leading-eyebrow: 1;

  --tracking-display: -0.01em;
  --tracking-eyebrow: 0.14em;
}
