Can I use Google Fonts with a custom theme?

New here… I am using Kiko theme…can I integrate Google Fonts for this theme? If so a step by step would be greatly appreciated.

Thank you,
Randy

Yes, you can use Google Fonts by adding a font reference to the CSS. In Micro.blog, click on Design → Edit Custom CSS and paste in the CSS that you get from Google. It will look something like this:

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');

body {
  font-family: "Roboto";
}

Let us know if you have any questions.

1 Like

Awesome, added to my todoist list for the day.