/* ==========================================================================
   Typography - single source of truth for the public site.
   One typeface everywhere, exposed through --font-sans, so changing the brand
   font later is a one line edit instead of a site wide hunt.
   ========================================================================== */

:root {
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --ph-font: var(--font-sans);
}

html,
body,
h1, h2, h3, h4, h5, h6,
p, a, span, small, strong, b, em, li, dt, dd,
blockquote, figcaption, cite,
label, legend, button, input, select, textarea, optgroup,
table, caption, th, td {
    font-family: var(--font-sans);
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Prices and durations keep an even width so nothing shifts between weights. */
.price,
.before-price,
.before-price1,
.after-price,
.after-price1 {
    font-variant-numeric: tabular-nums;
}