Preloading Fonts

When using custom web fonts, layout shifts are a common issue. This occurs because the browser prioritizes building the DOM over loading the custom fonts. To solve this problem, you can preload the fonts using the following HTML <link> tag:

<link
    rel="preload"
    href="<font-path>"
    as="font"
    type="font/woff2"
    crossorigin="anonymous"
>