I found this is the easiest way to it. First of all you have to add desired font to your project. I usually create some sort of “Resources” folder in such cases.
It is very important to set properties of your newly added recourse as follows.
Build action must be set to “Content” and it must be copied to application working folder. You can set Copy always or Copy if newer either one will work.
This is how you can reference your font from XAML code.
“.PathToResourceFolder/#FontName”
Basically font file will be copied to build output directory and will be loaded dynamically by .NET runtime.
Microsoft provided other ways to do this. It’s possible to embed font as resource into application or some other referenced assembly. However I found this most useful.
Some other solutions to same topic:
http://wpf.nickthuesen.com/?p=8
http://msdn.microsoft.com/en-us/library/ms753303.aspx
http://blog.tremaynechrist.co.uk/post/2009/12/22/Embedding-Fonts-In-WPF-Using-Visual-Studio.aspx