/**
 * ServerConsultant - Font Overrides
 * Created: 2025-03-06
 * 
 * This file ensures that all components use the centralized font management system
 * by overriding direct font-family references in the webflow.css file.
 */

/* Override all Epilogue font references to use our font variables */
[class*="para-"], 
[class*="heading-"], 
[class*="text-"], 
.text-block,
.button,
.button-primary__label,
.main-footer__link-box,
.sc-footer-heading,
.sc-footer-tag-line,
.sc-contact-form-field input,
.sc-contact-form-field textarea,
body,
p,
h1, h2, h3, h4, h5, h6,
.form-block,
.form-field {
  font-family: var(--sc-font-primary) !important;
}

/* Apply secondary font where needed */
.quote-text,
blockquote {
  font-family: var(--sc-font-secondary) !important;
}