/* Ghost custom font variable support */
:root {
    --gh-font-heading: 'Be Vietnam Pro', sans-serif;
    --gh-font-body: 'Inter', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--gh-font-heading);
}
body, p, a, li {
    font-family: var(--gh-font-body);
}
