Mobile app version of vmapp.org
Login or Join
Carla748

: Is there a difference (in licensing) between embedding a font on a website and just setting it in 'font-family'? I'd like to use Futura font on my website. I know I can just state it in

@Carla748

Posted in: #FontLicensing #Fonts #Licensing

I'd like to use Futura font on my website. I know I can just state it in the 'font-family' attribute, like this:

font-family: 'Futura', 'Helvetica', 'Arial', sans-serif


but afaik, that uses the font IF it is installed on the user's computer.
I suppose I need to buy the license for the font if I want to also embed it in my website, so everybody sees the page with Futura. But do I need to buy the font if I just list it in the font-family?

10.03% popularity Vote Up Vote Down


Login to follow query

More posts by @Carla748

3 Comments

Sorted by latest first Latest Oldest Best

 

@RJPawlick971

Short-and-sweet answer:

No. The Font-family declaration (used by itself) has nothing to do with font files that you as the designer are using. It's merely referencing font files that may or may not exist on the end-user's system.

10% popularity Vote Up Vote Down


 

@Speyer780

All the font-family CSS directive does is specify to the client browser which fonts it should use to display the styled content.

The client browser knows which fonts are available: those which are on the client machine, and those which are made available using @font -face or similar technologies.

If you are going to make the font available yourself, you will need to consult its licence. "Making the font available" might include making it downloadable on demand (@font-face or similar); or even embedding it in a PDF file. The licence will say how the manufacturer allows the font to be manipulated.

If you are only specifying to the client browser that it should use a font if it's available (because you have not made it available yourself), then you don't have to license the font. You don't have it, and you're not using it.

10% popularity Vote Up Vote Down


 

@Murphy569

If you're not serving the font from your server, you're only displaying it to people who already own the font. For anyone else, the browser will drill down the font stack till it finds a matching font on the computer.


WebFonts and Licensing

A webfont is a font that is used online. What makes it different is that the font is formatted so that browsers can see and render it accurately. This is often called a dynamic font, because the creator and user must have the font to see it properly.

These fonts are often embedded in the design project to ensure this works properly. Fonts can be embedded by the designer (but most licenses do not allow for this), while others include hosted embedding (this is how most webfont services work).


The wording of the license will specify if you can embed the font on your site or not.
designshack.net/articles/typography/what-is-a-font-license-and-do-i-need-one/


However, (unsolicited advice) as far as designing and developing goes, I'd probably recommend either embedding the font, or not including it at all. It makes it too hard to have a consistent experience across all devices, and also means you have to QA everything for both fonts (at least, you probably should, since different fonts will change the layout)

Helvetica (the second font in your stack) is not a standard font either. I would definitely rethink having the first two fonts be non-standard and non-embedded for the above reasons. You can try embedding "Helvetica Neue," which I've found is an excellent alternative to Helvetica, (but you will have to buy the font)

Here are some other alternatives you might want to check out: intavant.com/blog/2012/futura-web-font-alternatives/
Is there a free 'Helvetica Neue' alternative?

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme