Q2A uses @font-face CSS in the head right? You can add this attribute:- font-display: fallback;
@font-face {
font-family: "Ubuntu"; font-style: normal; font-weight: 700; font-display: fallback;
...
}
What it does is, it loads the browsers default font first and switch to the font from CSS when it gets loaded.
It just makes the website a few milliseconds faster I guess.