/*
 * Mindvision Global Typography RC1.1
 * Canonical rule:
 * - Titles and headings: Oswald
 * - All other text: Poppins
 * - Exceptions: icon fonts, code/monospace and intentional handwriting treatments
 */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&display=swap&family=Oooh+Baby&family=Prata&display=swap');

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--mv-font-heading);
    font-weight: 400;
    text-transform: capitalize;
}
.mv-hero__concierge h2 {
    text-transform: capitalize!important;
}
.mv-hero__decision-copy strong {
    font-family: var(--mv-font-heading)!important;
}