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?
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);
}