/* typography.css */
body {font-family: 'Quicksand', sans-serif;}

h1, h2, h3 {
 font-family: "Nunito", sans-serif;
}

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

@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }
}
