What is the default font?

What’s the name of the default write.as font?

The default (serif) font is Lora. There’s a bit more information (with links) on our Brand page.

Thank you @matt – if I wanted to specify in CSS that headers only use “lora”, how would I do that (or can you point me to a resource)?

If you’re looking to show all headers in Lora, this should do:

h1, h2, h3 {
    font-family: Lora, serif;
}

Otherwise, if you just want post headers to use Lora, just drop h1, from the list.

1 Like