/* Importando a fonte Montserrat Regular */
@font-face {
  font-family: 'Montserrat';
  src: url('./fonts/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

/* Importando a fonte Montserrat Bold */
@font-face {
  font-family: 'Montserrat';
  src: url('./fonts/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

/* Estilo geral */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f4f4f4;
  color: #222;
  padding: 2rem;
}

h1 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

p {
  font-weight: 400;
  font-size: 1.1rem;
}
