/* Bricks — webfonts
   Source: Brandguide Bricks.pdf — "TIPOGRAFIA" page.
   Títulos (headings): Montserrat, DM Sans Bold
   Corpo (body): DM Sans, Inter
   All three are Google Fonts — loaded via Google's hosted CSS (contains the
   real @font-face rules + woff2 sources) rather than guessed substitutes. */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=DM+Sans:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --font-display: 'Montserrat', 'DM Sans', sans-serif;
  --font-heading: 'DM Sans', 'Montserrat', sans-serif;
  --font-body: 'DM Sans', 'Inter', sans-serif;
  --font-mono: 'Inter', ui-monospace, monospace;
}
