Is it possible to enclose a font file in a Seaside application so that the client renders the website using that one instead of the ones in their system?
If so, how would one do it?
Yes, this is not a Seaside issue but a CSS one. In addition with Damien answer, you might want to try google fonts: http://code.google.com/webfonts
Agreed with the others. This is not a Seaside issue, this is an overall web design/ web typography issue.
I recommend some web searches on web fonts and web typography, in general. At the moment, the general consensus among web designers is -- either stick to web safe fonts, or use an external font library such as:
This is more a question about CSS and using
@font-face
; see this article, for instance.About the Seaside side of things, the font is just a static file, so the usual ways apply; for instance, you could include it in a file library and possibly as a static file served by the front-end http server for performance.