/* Global font overrides for ordr.net
   - Headings: Poppins
   - Body/UI: Arimo
*/

:root{
  --font-body: "Arimo", Arial, sans-serif;
  --font-heading: "Poppins", "Arimo", Arial, sans-serif;
}

/* Body + UI controls */
html, body,
button, input, select, textarea,
.form-control, .btn{
  font-family: var(--font-body) !important;
}

/* Headings + common heading utility classes */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6{
  font-family: var(--font-heading) !important;
}

/* If any specific selectors used the wrong family name previously, force the heading font */
.bs-section.bs-section--customers-case-studies .bs-div__inner > p{
  font-family: var(--font-heading) !important;
}
