I can't seem to make my math come out in bold using the mathspec package. Consider this example:
\documentclass{article}
\usepackage{mathspec}
\setallmainfonts{Times New Roman}
\begin{document}
\textbf{This line should all be bold: {\boldmath $17^2 = 289$}.}
\end{document}
When compiled, it gives:

If mathspec is not used, then the math is bold, like it should be. How can I make my custom-font math bold as well?
\setmathsfont(Digits,Latin,Greek){Times New Roman Bold}Though all math would be bold then. – Stefan Kottwitz Aug 15 '10 at 19:02