/**
 * A Event — font draft switch
 *
 * Đổi class trên <body>:
 *   font-draft-sans        — toàn bộ Manrope
 *   font-draft-serif       — Cormorant tiêu đề / Manrope body
 *   font-draft-instrument  — Instrument Serif tiêu đề / Manrope body
 *   font-draft-all-serif   — toàn bộ Cormorant
 */

:root {
  --ae-font-body: "Manrope", system-ui, sans-serif;
  --ae-font-display: "Manrope", system-ui, sans-serif;
}

body.font-draft-sans {
  --ae-font-body: "Manrope", system-ui, sans-serif;
  --ae-font-display: "Manrope", system-ui, sans-serif;
}

body.font-draft-serif {
  --ae-font-body: "Manrope", system-ui, sans-serif;
  --ae-font-display: "Cormorant Garamond", "Instrument Serif", Georgia, serif;
}

body.font-draft-instrument {
  --ae-font-body: "Manrope", system-ui, sans-serif;
  --ae-font-display: "Instrument Serif", Georgia, serif;
}

body.font-draft-all-serif {
  --ae-font-body: "Cormorant Garamond", Georgia, serif;
  --ae-font-display: "Cormorant Garamond", Georgia, serif;
}

body {
  font-family: var(--ae-font-body);
}

.font-serif {
  font-family: var(--ae-font-display) !important;
}

.prose-wp h1,
.prose-wp h2,
.prose-wp h3,
.prose-wp h4 {
  font-family: var(--ae-font-display);
}

.trust-item .num,
.flow-step-num,
.result-num {
  font-family: var(--ae-font-display);
}
