Re: Embedding fonts.
If we are taking about Silverlight Application in Silverlight 2 beta 2 I'm sure that both font underline: tt and ps are suported by Sl2B2. The best way to embedding fonts is:
1. Add font file to project tree.
2. In font file properties you should set Build Action as Resource and set Copy to output directory as: Do not copy.
3. In xaml file ? 9case font file is in Fonts directory in root directory
<TextBlock FontFamily="fontFilePath#outlinesFontName" />
<TextBlock FontFamily="../Fonts/fontFile.ttf#outlinesFontName" />