/* Shared heading style from the sign-in "Simulation & Practice" reference.
   Keep each component's sizes, colors, spacing and responsive layout intact. */
:root {
  --gui-heading-font: "Poppins", "Inter", "Noto Sans Ethiopic", system-ui, -apple-system, "Segoe UI", sans-serif;
  --gui-heading-weight: 700;
  --gui-heading-tracking: -.01em;
  --gui-heading-leading: 1.25;
}

/* Central heading tokens override older component fonts, not body typography.
   Practice questions remain in their original reading-friendly text style. */
body :is(
  h1, h2, h3, h4, h5, h6,
  .page-title,
  .hero-title,
  .auth-title,
  .auth-title-purpose,
  .panel-title,
  .feature-title,
  .modal-title,
  .accordion-header > .accordion-button
):not(:where(#simQuestion, #flashcardQuestion, #reportDetailQuestion, .flashcard-question)) {
  font-family: var(--gui-heading-font) !important;
  font-weight: var(--gui-heading-weight) !important;
  letter-spacing: var(--gui-heading-tracking) !important;
  line-height: var(--gui-heading-leading);
  overflow-wrap: break-word;
}
