Including fonts in themes - possible?

I can’t figure out how to include a font in a theme. Normally, I would put
@import url('https://fonts.googleapis.com/css?family=my+font+here');
in my CSS file, but there’s no place do do that under the theme:.

Is what I’m trying to do possible with the native theme capabilities?

1 Like

Yes it is, I succeeded by adding this to the resources in the Lovelace config:

resources:
  - type: css
    url: 'https://fonts.googleapis.com/css?family=your+font+there'
2 Likes