I am writing a paper about the phonetics of the Sgaw Karen language. Because of this, I need to include both Sgaw Karen text and IPA characters.
To display IPA characters, it seems that I need to use the tipa package.
Sgaw Karen orthography is technically included in Unicode, but very few fonts seem to support it. After extensive searching, it seems like my best solution is to use fontspec and the Padauk font.
A MWE of what I am trying to do looks like this:
\documentclass{article}
\usepackage{fontspec}
\usepackage[tone]{tipa}
\newfontfamily\karen{Padauk Book}
\begin{document}
{\karen န}
\textipa{\textsubbridge{t}}
\tone{33}ma
\end{document}
When I try to render this in XeLaTeX, the output displays the Karen text, but the IPA diacritic does not appear, nor does the tone letter.
From perusing other questions on StackExchange (e.g. Using TIPA with fontspec, More problems with TIPA and Fontspec, Revisiting TIPA and Fontspec) I realize that tipa and fontspec often get in each other's way, but none of the answers provided in those posts seemed to resolve the problem for me.
I am open to any solution that lets me display Sgaw Karen and IPA text, even if it involves abandoning either or both of these packages or the Padauk font.

I don't care for Charis SIL as body text, so I slightly modified your suggestion by creating a new {\ipa } font family for IPA text. But overall, your answer helped me solve my problem. Thanks again!
– krs Mar 19 '16 at 23:52