/**/

/* Define Fira Code font */
@font-face {
    font-family: 'Fira Code';
    src: url('/assets/stylesheets/fonts/FiraCode-VariableFont_wght.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap; /* Best practice for performance */
}

/* Define Inter font */
@font-face {
    font-family: 'Inter';
    src: url('/assets/stylesheets/fonts/Inter-VariableFont_opsz,wght.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap; /* Best practice for performance */
}

/* Font for headings */
.md-typeset h1 {
    font-family: "Inter", sans-serif;
}
/* Plus make it bold */
.md-typeset h2,
.md-typeset h3,
.md-typeset h4,
.md-typeset h5,
.md-typeset h6 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
}

/* Font for general text */
body {
    font-family: "Inter", sans-serif;
}

/* Font for code */
.md-typeset code {
    font-family: "Fira Code", monospace;
}

/* Color ONLY inline code blocks */
.md-typeset code:not(pre code) {
    color: orangered;
}
