One popular (lightweight) formal method from the US is Alloy, developed at MIT, so there is some action in America at important universities. Carnegie Mellon has a "Master of Software Engineering" that includes at least one FM course ("Models of Software Systems").
I suppose the antipathy in the US is the same as over here in Europe: they were oversold and many people still think of FMs as writing 300 pages of math before writing the first line of code. The best attack is using them and showing that they can be useful if used appropriately and realistically. I'd highly recommend Daniel Jackson's book on Alloy (even though it's not particularly strong on maths, "Using Z" was much more thorough in that regard).
Foreword & introduction from Jackson's book (online as sample chapters) and his article "Dependable Software by Design" give some good ideas on how to sell this stuff.
I'm using Alloy along with Z and CSP at work (although only for myself, I'm the only weird one who does this, although a few people got interested once they saw what I did with them). It saved me from some broken designs, so yes it works even beyond safety-critical systems if you learn to use it well and get a feeling for the level of abstraction that's best for your use case.
You'll have a hard time finding a job involving formal methods. Depends on how serious you are about it. If you're very serious, try companies specialising on safety-critical systems. However, the only job listings for writing formal specs I've ever seen were all masters thesis.
Or: get a regular job, apply some lightweight FM to your work and show off when you've got some interesting results (the analyzing and visualizing capabilities of Alloy really help here). I believe I'm having much more fun this way than if I'd be working in the safety-critical systems industry with ADA/SPARK.
If you'd rather like to stay in academia, have a look at dependently-typed programming languages or theorem provers. Basically, in a dependently-typed language you put the specification in the types that you would write down separately with "less hard" formal methods. So the compiler can verify that your program complies to the specification. There's a (very) lightweight form of programming with properties in types that you may be interested in if you like this stuff (look up "phantom types" or "index types").
Dependent types/theorem provers should be more popular in the US academia than the Z or CSP stuff I think. I've seen materials from a course on Coq (a theorem prover) at Harvard that are really good. And Tim Sheard at Portland has created Omega, which is kind of a strict Haskell dialect that is kind of in between functional programming and a full-blown dependently-typed language. Look at his two papers "Languages of the Future" and "Putting Curry-Howard to Work". I had the pleasure of attending his lecture and tutorials on Omega at a summer school here in Europe. He's great!