/*
polars output has box glyphs, but google fonts do not host them:
https://github.com/squidfunk/mkdocs-material/discussions/7449

pyftsubset path/to/font.ttf --flavor=woff2 --output-file=docs/assets/RobotoMonoNerdFontMono-Regular-stripped.woff2 --unicodes="U+0000-2600"
*/
@font-face {
    font-family: "Roboto Mono Nerd Font";
    src: url("../assets/RobotoMonoNerdFontMono-Regular-stripped.woff2") format("woff2");
}

:root {
    --md-code-font: "Roboto Mono Nerd Font", monospace;
}