Before I post this is Bug forum, I figured I'd ask here and see if you all have any insight. I'm trying to use multiple Google fonts on a character sheet. When I grab the import from Google fonts it gives me this: @import url('<a href="https://fonts.googleapis.com/css2?family=Rye&family=Teko&family=Monoton&family=DM+Mono&display=swap" rel="nofollow">https://fonts.googleapis.com/css2?family=Rye&family=Teko&family=Monoton&family=DM+Mono&display=swap</a>'); That works great in a Custom Sheet game, but when I test it in my Sandbox game I get this error message: I can't seem to have more than one import statement in my CSS, because it ignores the second one. If I change the above statement to this: @import url('<a href="https://fonts.googleapis.com/css?family=Rye&family=Teko&family=Monoton&family=DM+Mono&display=swap" rel="nofollow">https://fonts.googleapis.com/css?family=Rye&family=Teko&family=Monoton&family=DM+Mono&display=swap</a>'); (change css2? to css?), everything loads fine, except it only acknowledges the first font-family in the URL (in this case Rye) and ignores all the subsequent ones. Anyone know why it works for a Custom Sheet, but not in the Sandbox? Is it is problem with the Sandbox or if I upload this to Git, will my sheet no longer have any CSS styling because the styling is thrown out (which is what happens in the sandbox)?