/* Aurochs migration overrides — replaces Adobe Typekit dolly-new with Google Fonts Lora.
 * Loaded after Salient's bundled CSS so it wins the cascade.
 * Salient selectors use font-family: 'dolly-new', Roboto, sans-serif on H1/H2 etc.
 * The @font-face alias below means anywhere Salient's CSS picks 'dolly-new', Lora renders locally.
 */
:where(h1, h2, h3, h4, h5, h6, .vc_custom_heading, [class*='dolly']),
:where([style*="dolly-new"]) {
  font-family: "Lora", Georgia, "Times New Roman", serif !important;
  font-feature-settings: "kern", "liga", "calt";
}
@font-face {
  font-family: "dolly-new";
  src: local("Lora"), local("Georgia");
  font-display: swap;
}
