/**
 * font-display for the fonts whose @font-face we do not generate.
 *
 * Font Awesome used to be declared here too, redeclaring its families with
 * `font-display: swap` to beat the `block` in font-awesome-all.css. That never reliably
 * worked: both sheets load with media=print and switch to media=all on load, so which
 * declaration won depended on which file finished downloading first. scripts/build-css.php
 * now rewrites font-display at the source (Assets::rewriteFontFaces), so the duplicate
 * faces here were not only redundant but actively harmful — they still pointed at the full
 * 124KB/102KB webfonts rather than the subsets.
 */
@font-face {
    font-family: icomoon;
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/icomoon.woff?tin97q') format('woff');
}
