/* São Paulo Empreendimentos — webfonts
   Manual specifies "Gilroy" (display/body/UI) + "Playlist" script (support/accent).
   Both are commercial fonts not redistributable here — see readme.md "Font
   substitution" note. Substituted with the closest free/Google-hosted match:
     Gilroy    -> Poppins   (geometric grotesque, same rounded-geometric bones)
     Playlist  -> Redressed (loose brush script, same casual hand-lettered feel)
   Swap the two @font-face-free imports below for real Gilroy/Playlist .woff2
   files if/when the studio provides them — every --font-* alias stays the same. */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&family=Redressed&display=swap');

:root {
  --font-display: 'Poppins', 'Gilroy', -apple-system, sans-serif; /* substitute for Gilroy */
  --font-body: 'Poppins', 'Gilroy', -apple-system, sans-serif;
  --font-script: 'Redressed', 'Playlist', cursive; /* substitute for Playlist */

  --fw-regular: 400; /* @kind other */
  --fw-medium: 500; /* @kind other */
  --fw-semibold: 600; /* @kind other */
  --fw-bold: 700; /* @kind other */
  --fw-extrabold: 800; /* @kind other */

  --text-xs: 13px;
  --text-sm: 15px;
  --text-base: 17px;
  --text-md: 20px;
  --text-lg: 24px;
  --text-xl: 32px;
  --text-2xl: 40px;
  --text-3xl: 56px;
  --text-4xl: 72px;

  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-normal: 1.55;

  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.08em;
}
