/* Importar fonte Poppins do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Aplicar Poppins como fonte padrão */
:root {
  --font-family: 'Poppins', sans-serif;
}

body {
  font-family: 'Poppins', sans-serif;
}

/* Garantir que títulos também usem Poppins */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}
