/* Canonical body typography */
body{font-family:"Inter","Helvetica Neue",Arial,sans-serif;}
p,li{font-family:inherit;}
/* Body: clean sans for readability */

/* Base reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body – serif for academic readability */

/* Site title – strong serif */
h1.site-title {
  font-family: "Merriweather", Georgia, serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

/* Subtitle/tagline – lighter serif */
.site-tagline {
  font-family: "Merriweather", Georgia, serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #444;
  margin-bottom: 2rem;
}

/* Headings elsewhere – clean sans-serif */
h2, h3, h4, h5, h6 {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.25px;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

/* Paragraphs & lists */
p, li {
  font-family: "Merriweather", Georgia, serif;
  margin-bottom: 1rem;
}

/* Links */
a {
  color: #0056b3;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Basic container */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}


/* --- Typography override with fallbacks --- */

p, li {
  font-family: inherit; /* inherit Inter for body */
}

h1.site-title,
.site-tagline {
  font-family: "Merriweather", Georgia, "Times New Roman", serif;
}
/* Paragraphs & lists inherit body font */
p, li { font-family: inherit; }


/* --- Final typography override (wins cascade) --- */
p, li{ font-family:inherit; }

/* --- Final typography override (wins cascade) --- */
p, li{ font-family:inherit; }
