Adding custom fonts to CSS file

How would I go about adding custom fonts to the CSS file?

I tried @import url(https://fonts.googleapis.com/css?family=Open+Sans);, but it's trying to put a curly brace after the statement.

Thank you.

Found the answer:

@font-face {
    font-family: "FontFamily";
    src: url("whereevertheurlpointsto");
}

h1, h2 {
    font-family: "FontFamily";
}

Even easier...

In the design panel, click fonts and you can import google fonts without having to mess with code.

Nice job, you answered yourself faster than I saw the post lol. The last option is definitely the easier one. :)

Yep as you found out good fonts is intetgrated with this app, but if you want to use your own custom (non-google) fonts you would have to sort that post export as there is no way to get them to work inside this app just yet.