
/* Load Nunito exactly like Mazer does */
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&display=swap");

/* Ensure body + headings use Nunito and consistent sizing */
html {
  /* If your browser default isn't 16px, lock it for consistency */
  font-size: 16px;
}
body {
  font-family: 'Nunito', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
               Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji",
               "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem; /* same as Mazer */
  color: #607080;
  background-color: #f2f7ff;
}

/* Headings like Mazer */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #25396f;
}