/*
  The font-family stack:
  1. 'Times New Roman': The preferred font.
  2. Times: A fallback for older systems.
  3. serif: The generic fallback, ensuring a serif typeface is used.
*/

/* Target all text in the body */
body {
  font-family: "Times New Roman", Times, serif !important;
}

/* Target all headings (H1-H6) */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Times New Roman", Times, serif !important;
}

/* Optional: Target code blocks or preformatted text if needed */
/* pre, code {
    font-family: monospace !important; 
} */
