On my website I have a webfont hosted on my server and for a few weeks I realized that in Chrome, once loaded all the content of the page, it takes less than a second to load the font. Is there a way to optimize the load without delay?
I am loading the font by CSS in the following way:
@font-face {
    font-family: 'webfont';
    src: url('/global/fonts/webfont-regular-webfont.eot');
    src: url('/global/fonts/webfont-regular-webfont.eot?#iefix') format('embedded-opentype'),
    url('/global/fonts/webfont-regular-webfont.woff2') format('woff2'),
    url('/global/fonts/webfont-regular-webfont.woff') format('woff'),
    url('/global/fonts/webfont-regular-webfont.ttf') format('truetype'),
    url('/global/fonts/webfont-regular-webfont.svg#webfontregular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: fallback;
}
Here the demo:
