I'm using 3 Google fonts on a site. The last font listed in the font request is only needed for two words in the header.
Google states that you can specify a text=value in the font request URL if you only need a few letters and want to reduce the size of the font file being requested.
When I add the following to the font request:
<link href="https://fonts.googleapis.com/css?family=Open+Sans%7cRaleway:200,100%7cBowlby+One:400&text=Abc%20Defghijkl" rel="stylesheet" type="text/css">
The header looks fine but the H2 text which another Google font doesn't display correctly.
When I put Bowlby+One:400&text=Abc%20Defghijkl on a separate line in a separate request everything works.
Is there a way to add the text=value to Bowlby One and keep the font requests in one line? If not, will using two separate requests add time and counteract the benefit of only requesting a few letters for the Bowlby One font?
Thanks for your help!