My team and I have developed a site using the Helvetica Neue Light font face via @font-face in our stylesheet.
We're curious about whether it's legal for us to do this and who owns that font (if anyone?) Does anyone know how we can find this out - google just shows lots of sites trying to sell us the font.
I understand it's a system font on most mac computers, so maybe its license is pretty open?
It's legal to ask the browser to use Helvetica Neue if it's available on the system, but you'd need a license if you want to serve the font yourself. One option is to use Helvetica Neue if it's system-installed and fall back to some other sans-serif font like Arial if it's not.
While a few names, such as Courier are in the public domain, most of the familiar font names such as Arial or Helvetica are the trademarks of one company or another. The computerized data making up the font is subject to copyright in the United States and some other countries.
Nimbus Sans Designed by type foundry URW, Nimbus Sans is a great Helvetica replacement.
What is the difference between Helvetica and Neue Helvetica? First, a bit of history. The original Helvetica design was created by Max Miedinger and released by Linotype in 1957. The second, Neue Helvetica, was a re-working of the 1957 design and was released in 1983 by D.
If you are just referencing the users system fonts then the licensing requirement is on the User.
If you are providing the font then you (or your client) will need to licence the Font -- even if it's a free font there will likely be some form of licence.
@font-face uses two forms of reference: LOCAL which references the user's system font and URL which effectively uses a copy of a font which you provide and as there is very little point in using the @fontface rule if you aren't going to provide the font then it's almost certain that you'll need to actively obtain a licence.
for example:
@font-face { font-family: myHelveticaLight; src: local("Helvetica Neue Light"), local("HelveticaNeue-Light"); }
Here you are only referencing a user's installed system font and therefore have no have responsibility for obtaining the licence.
In the following example you are also providing a fallback copy of the font so you must have actively obtained a web licence for that font (or rather your client or the website owner will need to)
@font-face { font-family: myHelveticaLight; src: local("Helvetica Neue Light"), local("HelveticaNeue-Light"), url(HelveticaNeueLight.ttf); }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With